home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / FunctionSetInfo / Sources / MathFSetSub.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  321 b   |  23 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        MathFSetSub.c
  3.  
  4.     Contains:    Implementation of the MathFSetSub function set.
  5.  
  6.     Copyright:    © 1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __MATHFSET__
  11. #include "MathFSet.h"
  12. #endif
  13.  
  14. int MathFunction1(int a, int b)
  15. {
  16.     return a - b;
  17. }
  18.  
  19. int MathFunction2(int a, int b, int c)
  20. {
  21.     return a - b - c;
  22. }
  23.